home *** CD-ROM | disk | FTP | other *** search
/ Amiga CD-Sensation: Golden Games / Amiga CD-Sensation - Ausgabe 2 - Golden Games (1996)(GTI - Schatztruhe)(DE)[!].iso / Adventurer's / ImpPro / Developer / GTModule.h < prev    next >
C/C++ Source or Header  |  1994-11-14  |  372b  |  23 lines

  1. // Defines for an external Imp Professional module
  2.  
  3. #ifndef MODULE_H
  4. #define MODULE_H
  5.  
  6. #include "ImpLib.h"
  7. #include "ImpLib_pragmas.h"
  8.  
  9. #define BUF              80
  10. #define OK               1
  11.  
  12. // Structures and typedefs
  13.  
  14. // Protos for an external Imp Professional module
  15.  
  16. void         Open_All(void);
  17. void         Close_All(char *);
  18.  
  19. // externs
  20.  
  21. extern struct Library *ImpBase;
  22. #endif
  23.